home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / wavepool.zip / PHONE2.WPL < prev    next >
Text File  |  1992-04-08  |  368b  |  25 lines

  1.  
  2. #
  3. #       PHONE2 Wavepool program
  4. #
  5. #       Copyright 1992, Data Assist, Inc.
  6. #
  7.  
  8. BEGIN {
  9.     screate("phone2.sou")
  10.  
  11.     for (c=1; c<=5; ++c) {
  12.         print c;
  13.         for (x=1; x<=100; ++x) {
  14.             sinwave(400, 20);
  15.             quiet(10);
  16.         }
  17.         quiet(5500);
  18.     }
  19.     sclose(0);
  20.     sndvoc("phone2.sou", "phone2.voc");
  21. }
  22.  
  23.  
  24.  
  25.